SUPPORT / SAMPLES & SAS NOTES
 

Support

Problem Note 43612: SAS® system option DMSPGMLINESIZE does not work as documented

DetailsAboutRate It

The SAS® system option DMSPGMLINESIZE does not work as documented.

While it is possible to set the option to values within the documented range of 136-960, the value is not recognized by the Program Editor window. That is, the Program Editor window initializes with its default value of 384 characters per line regardless of the value of the DMSPGMLINESIZE option. If you attempt to open a file that exceeds this limit, a pop-up warning window appears, displaying this message:

   N line(s) were included. Lines wider than 384 were truncated.

You can process SAS code that exceeds the limit of 384 characters per line by calling the same code externally, using a FILENAME statement and a %INCLUDE statement. Here is an example:

   filename foo '/usr/local/SAS/SASFoundation/9.2/myprog.sas';
   data _null_;
   %include foo;
   run;


Operating System and Release Information

Product FamilyProductSystemSAS Release
ReportedFixed*
SAS SystemBase SAS64-bit Enabled Solaris9.2 TS1M09.4 TS1M0
Solaris for x649.2 TS1M09.4 TS1M0
Linux for x649.2 TS1M09.4 TS1M0
Linux9.2 TS1M09.4 TS1M0
HP-UX IPF9.2 TS1M09.4 TS1M0
64-bit Enabled AIX9.2 TS1M09.4 TS1M0
64-bit Enabled HP-UX9.2 TS1M09.4 TS1M0
* For software releases that are not yet generally available, the Fixed Release is the software release in which the problem is planned to be fixed.